home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- FILE : ui_result.ph
- SHORTNAME : result.ph
- SNNS VERSION : 3.2
-
- PURPOSE :
- NOTES :
-
- AUTHOR : Michael Vogt
- DATE : 20. 5. 1992
-
- CHANGED BY :
- IDENTIFICATION : @(#)ui_result.ph 1.7 3/2/94
- SCCS VERSION : 1.7
- LAST CHANGE : 3/2/94
-
- Copyright (c) 1990-1994 SNNS Group, IPVR, Univ. Stuttgart, FRG
-
- ******************************************************************************/
-
-
- #ifndef _UI_RESULT_DEFINED_
- #define _UI_RESULT_DEFINED_
-
-
- /* begin global definition section */
-
-
- #define UI_RESULT_INPUT_YES 0
- #define UI_RESULT_INPUT_NO 1
- #define UI_RESULT_OUTPUT_YES 0
- #define UI_RESULT_OUTPUT_NO 1
- #define UI_RESULT_MODE_CREATE 0
- #define UI_RESULT_MODE_APPEND 1
-
-
- void ui_popupResult (Widget);
-
-
- Bool ui_ResultIsCreated = FALSE;
-
-
- /* end global definition section */
-
-
- /* begin private definition section */
-
-
- static void ui_performRadioButtons (Widget [], int, int);
- static void ui_result_Setinput (Widget, int, caddr_t);
- static void ui_result_Setoutput (Widget, int, caddr_t);
- static void ui_result_Setmode (Widget, int, caddr_t);
- static void ui_result_lastcall (Widget, int, caddr_t);
- static void ui_result_default (Widget, int, caddr_t);
- static void ui_resultDone (Widget, int, caddr_t);
- static void ui_resultCancel (Widget, int, caddr_t);
- static Widget ui_xCreateResultPanel (Widget);
-
-
- static int ui_result_output_state;
- static int ui_result_no_start_pat;
- static int ui_result_no_end_pat;
- static int ui_result_input_state;
- static int ui_result_mode_state;
- static Widget ui_resultInputRButtons[2];
- static Widget ui_resultOutputRButtons[2];
- static Widget ui_resultModeRButtons[2];
- static Widget ui_resultStartPattern;
- static Widget ui_resultEndPattern;
-
-
- /* end private definition section */
-
-
- #endif /* _UI_RESULT_DEFINED_ */
-
-
-